Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
gelf-stream
Advanced tools
A node.js stream to send JS objects to a Graylog2 server (in GELF format).
Also provides a stream that can be used directly in Bunyan and provides a number of sane mappings.
var split = require('split'),
bunyan = require('bunyan'),
gelfStream = require('gelf-stream')
// gelf-stream comes with Bunyan support
var stream = gelfStream.forBunyan('localhost')
var log = bunyan.createLogger({name: 'foo', streams: [{type: 'raw', stream: stream}]})
log.info('Testing Bunyan') // will be sent to the Graylog2 server on localhost
log.error(new Error('Oh noes!')) // will extract file/line numbers too
stream.end() // Bunyan doesn't currently end the stream when the program has finished
// Or you can use it to stream any sort of object/string
process.stdin
.pipe(split()) // split into lines
.pipe(gelfStream.create('localhost', {defaults: {level: 6}}))
process.stdin.resume()
With npm do:
npm install gelf-stream
FAQs
A stream to send JS objects to a Graylog2 server (in GELF format)
The npm package gelf-stream receives a total of 4,288 weekly downloads. As such, gelf-stream popularity was classified as popular.
We found that gelf-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.